Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

133
Views
Multiple Image Upload Maintaining Selection Order-Multer[node.js]

I want to get the order of images uploaded using multer according to the order which the user selected before dragging. Is it possible?

 exports.summaryPost =   (req, res) => {
upload (req,  res,  (err) => {   
      if(err) {
        res.send(err)
      }
       else {
        const filez = req.files
        var files = []
        
        for(const file of [...req.files])  {
          files.push({imageName: file.filename});
        }          
     
      }
  })

}

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

const filez = req.files
            var files = []

            for(const file of [...req.files])  {

              files.push({imageName: file.filename});

             }
             const collator = new Intl.Collator();
              files.sort((a, b) => collator.compare(a.imageName, b.imageName));

            console.log(files)
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!